home *** CD-ROM | disk | FTP | other *** search
/ Collection of Tools & Utilities / Collection of Tools and Utilities.iso / basic / altqb550.zip / HLPFILES.ZIP / FASTPRNT.HLP < prev    next >
Text File  |  1991-08-14  |  2KB  |  41 lines

  1.          ┌────────────────────────────┐
  2.          │     FAST SCREEN OUTPUT     │
  3.          └────────────────────────────┘
  4.              
  5. This  function provides a rapid method of displaying a
  6. string  of  characters on the screen, without updating 
  7. the cursor position.  The  calling program should pass
  8. a string of ASCII text, the row/column co-ordinates of
  9. the screen location where it is to be printed, and the
  10. display attribute required.
  11.  
  12. For most applications, which require text to be output
  13. to the screen,  the BASIC PRINT statement is perfectly
  14. adequate. FASTPRINT however, provides some significant
  15. advantages:
  16.  
  17. 1)   The ROW/COLUMN location where the string is to be
  18.      printed is specified to the routine,  so there is
  19.      no need for a seperate LOCATE statement, to place
  20.      the cursor.
  21.  
  22. 2)   You can place the string anywhere on the display,
  23.      including the 25th line no matter what VIEW PRINT
  24.      parameters may be in effect.
  25.  
  26. 3)   Output to the bottom line of the display will not
  27.      cause the screen to scroll.
  28.  
  29. 4)   You  can specify the colour or display  attribute
  30.      of the text to be printed to the routine, so that
  31.      there is no need for a seperate COLOR statement.
  32.  
  33. 5)   Furthermore, the attribute specified applies only
  34.      to the text being printed, it does not affect the
  35.      colour of any subsequent PRINT statements.
  36.     
  37. 6)   FASTPRINT writes direct to display memory, and is
  38.      consequently, much faster than ordinary output to
  39.      the screen.  This is particularly noticeable when
  40.      you need to display large blocks of text.
  41.